home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Graphics / Graphic Demos / Circles / Circles.Pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1986-09-03  |  21.2 KB  |  841 lines  |  [TEXT/ttxt]

  1. PROGRAM Circles;
  2.  
  3.      {$I 'Pascal Complete:Pascal System:MemTypes.IPas' }
  4.                                 {basic Memory Manager data types}
  5.      {$I 'Pascal Complete:Pascal System:QuickDraw.IPas'}    
  6.                                 {interface to QuickDraw}
  7.      {$I 'Pascal Complete:Pascal System:OSIntf.IPas'   }    
  8.                                 {interface to the Operating System}
  9.      {$I 'Pascal Complete:Pascal System:ToolIntf.IPas' }    
  10.                                 {interface to the Toolbox}
  11.      {$I 'Pascal Complete:Pascal System:PackIntf.IPas' }    
  12.                                 {other packages}
  13.      
  14.      {$L Circles.rsrc }         {link in resources}
  15.      {$B+}                      {set bundle bit}
  16.      {$T 'APPL' 'TCIR'}         {set type and creator}
  17.  
  18. CONST
  19.       myAppType = 'TCIR';
  20.       myFType = 'CIRF';
  21.       RDdoc = 8;
  22.  
  23.       appleID = 128;     {resource IDs/menu IDs for menus}
  24.       fileID  = 129;
  25.       editID  = 130;
  26.       ControlID = 131;
  27.  
  28.       appleM = 1;        {index for each menu in myMenus (array of menu handles)}
  29.       fileM  = 2;
  30.       editM  = 3;
  31.       ControlM = 4;
  32.  
  33.       menuCount = 4;     {total number of menus}
  34.  
  35.       windowID = 128;    {resource ID for main window}
  36.  
  37.       NewCom = 1;
  38.       OpenCom = 2;
  39.       CloseCom = 3;
  40.       SaveCom = 4;
  41.       SaveAsCom = 5;
  42.       RevertCom = 6;
  43.       QuitCom = 7;        {constants identifying commands in file menu}
  44.  
  45.       undoCommand  = 1;
  46.       {blank item 2}
  47.       cutCommand   = 3;
  48.       copyCommand  = 4;
  49.       pasteCommand = 5;
  50.       clearCommand = 6;
  51.       {blank item 7}
  52.       CdiagCommand = 8;       {constants identifying commands in Edit menu}
  53.  
  54.       NCom = 1;       {constants identifying commands in Control menu}
  55.  
  56.       StringsID = 256;  {string resource containing misc. strings}
  57.       getDID = 258;     {dialog ID for getting rows and columns}
  58.       ErStopID = 256;   {stop alert: disc error}
  59.       RevCauID = 257;   {caution alert: revert to saved}
  60.       SaveCauID = 259;  {caution alert: save changes}
  61.  
  62.  
  63.  
  64. VAR myMenus: ARRAY[1..menuCount] OF MenuHandle; {array of handles to the menus}
  65.     dragRect: Rect;         {rectangle used to mark boundaries for dragging window}
  66.     theChar: CHAR;          {character typed on the keyboard or keypad}
  67.     doneFlag: BOOLEAN;      {TRUE if user has chosen Quit command}
  68.     myEvent: EventRecord;   {information about an event}
  69.     RDWRecord: WindowRecord;  {information about the main window}
  70.     RDWind: WindowPtr;        {pointer to RDWRecord of RD window}
  71.     RDconWRecord: WindowRecord;  {information about the RD controls window}
  72.     RDconW: WindowPtr;           {pointer to RDconWRecord of control window}
  73.     whichWindow: WindowPtr; {pointer to window in which mouse button was pressed}
  74.     hCurs: CursHandle;      {temp cursor handle}
  75.     iBeam: Cursor;          {I-beam cursor (from resource file)}
  76.     extended: BOOLEAN;      {TRUE if user is Shift-clicking}
  77.     linteger: LONGINT;      {temporary longints}
  78.     tempWPeek: WindowPeek;  {temporary windowpeeks}
  79.  
  80.  
  81.     i: INTEGER;             {junk integers}
  82.     TempRect: Rect;         {junk rectangles}
  83.     tempStr,bugStr: Str255;
  84.     mousePt : Point;
  85.     SavePort: GrafPtr;     {temporary save of grafport}
  86.     myPict: PicHandle;      {picture to be copied to scrap}
  87.     
  88.     UpdateFlag: BOOLEAN;
  89.  
  90.  
  91.  FileVolume: INTEGER;    {which volume, if loaded from disk}
  92.  changed: BOOLEAN;       {the document is 'dirty'}
  93.  titled:  BOOLEAN;       {the document has been saved to disk}
  94.  ErrorFlag, FCancel: BOOLEAN;
  95.  MyFileTypes: SFTypeList;  {same as myFType, in a format for Standard File}
  96.  
  97. PROCEDURE doSave; FORWARD;
  98. PROCEDURE RedrawWindow; FORWARD;
  99.  
  100.  
  101. {----------------------------------------------------------------------------------}
  102. PROCEDURE debug(pname: str255);
  103.   BEGIN
  104.   setRect(tempRect,10,278,200,292);
  105.   eraseRect(tempRect);
  106.   MoveTo(10,290);
  107.   drawString(pname);
  108.   END;
  109.  
  110.  
  111. {----------------------------------------------------------------------------------}
  112. PROCEDURE SetUpMenus;
  113. { Set up menus and menu bar }
  114.  
  115.   VAR i: INTEGER;
  116.  
  117.   BEGIN
  118.   { Read menu descriptions from resource file into memory and store handles }
  119.   { in myMenus array }
  120.   myMenus[appleM] := GetMenu(appleID); {read Apple menu from resource file}
  121.   AddResMenu(myMenus[appleM],'DRVR');  {add desk accessory names to Apple menu}
  122.   myMenus[fileM] := GetMenu(fileID);   {read File menu from resource file}
  123.   myMenus[editM] := GetMenu(editID);   {read Edit menu from resource file}
  124.   myMenus[controlM] := GetMenu(controlID);   {read Edit menu from resource file}
  125.  
  126.   FOR i:=1 TO menuCount DO InsertMenu(myMenus[i],0);  {install menus in menu bar }
  127.                                                       { and draw menu bar}
  128.   DrawMenuBar;
  129.   END;    {of SetUpMenus}
  130.  
  131.  
  132.  
  133.  
  134. {----------------------------------------------------------------------------------}
  135. {file handling routines follow...}
  136.  
  137.  
  138. {------------------------------------------------------------------------------------}
  139. PROCEDURE CloseAWindow;
  140. BEGIN
  141.   EraseRect(RDWind^.PortRect);
  142.   UpdateFlag := FALSE;
  143. END;
  144.  
  145. {------------------------------------------------------------------------------------}
  146. PROCEDURE ExpandRD;
  147. BEGIN
  148. END;
  149.  
  150. {------------------------------------------------------------------------------------}
  151. PROCEDURE DiskWErr (io : INTEGER);
  152. VAR
  153.     str:str255;
  154.     writetostr, savedstr, str1, fName: Str255;
  155.     dummy, errstr: INTEGER;
  156.  
  157. BEGIN
  158.   GetIndString (writetostr,StringsID,10); {read resource for writeto}
  159.   GetIndString (savedstr,StringsID,12);   {read resource for saved}
  160.   errstr := 0;
  161.   CASE io OF
  162.     DskFulErr : errstr := 17;
  163.     DirFulErr : errstr := 18;
  164.     FLckdErr : errstr := 19;
  165.     VLckdErr, WPrErr : errstr := 20;
  166.     IOErr : errstr := 21;
  167.     OTHERWISE
  168.     BEGIN
  169.       NumToString (io, str);
  170.       GetIndString (str1,StringsID,22);{ID = }
  171.       str := Concat (str1,str)
  172.     END
  173.   END;
  174.   IF errstr <> 0 THEN GetIndString (str,StringsID,errstr);
  175.   GetWTitle(RDWind,fName);
  176.   Paramtext (writetostr,fName,savedstr,str);
  177.   dummy := StopAlert (ErStopID, NIL);
  178.  
  179.   ErrorFlag := TRUE;
  180.   doneFlag := FALSE;
  181. END;
  182.  
  183.  
  184. {------------------------------------------------------------------------------------}
  185. Procedure DiskRErr (io : INTEGER);
  186. VAR
  187.     str: str255;
  188.     readfromstr, loadedstr, str1, fName: Str255;
  189.     dummy: INTEGER;
  190.  
  191. BEGIN
  192.   GetIndString (readfromstr, StringsID, 9); {this says 'reading from'}
  193.   GetIndString (loadedstr ,StringsID, 11); {this says 'loaded'}
  194.   IF io = IOErr THEN
  195.     GetIndString (str, StringsID, 21)  {this says 'IO error'}
  196.   ELSE
  197.     BEGIN
  198.     NumToString (io, str1);
  199.     GetIndString (str, StringsID, 22); {this is the generic 'ID ='}
  200.     str := Concat (str, str1)
  201.     END;
  202.   GetWTitle(RDWind,fName);
  203.   Paramtext (readfromstr, fName, loadedstr, str);
  204.   dummy := StopAlert (ErStopID, NIL); {discribe error to user in generic way.}
  205.  
  206.   ErrorFlag := TRUE;
  207.   doneFlag := FALSE;
  208. END;
  209.  
  210.  
  211.  
  212. {------------------------------------------------------------------------------------}
  213. PROCEDURE ReadFile (FName: Str255; VRefNum: INTEGER);
  214. VAR io : INTEGER;
  215.     logEOF: LongInt;
  216.     RefNo: INTEGER;
  217.     errin: str255;
  218.     tempSize: LongInt;
  219.  
  220. BEGIN
  221.   io := FSOpen (Fname, VRefNum, RefNo);
  222.   IF io <> 0 THEN DiskRErr (io);
  223.  
  224.   IF NOT ErrorFlag THEN
  225.     BEGIN
  226.     io := GetEOF (RefNo, logEOF);
  227.     IF io <> 0 THEN DiskRErr (io);
  228.     END;
  229.  
  230.     {add code here:  if file is too large, then notify user and truncate}
  231.  
  232.  {
  233.   IF NOT ErrorFlag THEN
  234.     BEGIN
  235.     tempSize := SIZEOF(mz);
  236.     io := FSRead (refNo, tempSize, POINTER(@mz));
  237.     IF io <> 0 THEN DiskRErr (io);
  238.     END;
  239.  
  240.   IF NOT ErrorFlag THEN
  241.     BEGIN
  242.     tempSize := SIZEOF(nz);
  243.     io := FSRead (refNo, tempSize, POINTER(@nz));
  244.     IF io <> 0 THEN DiskRErr (io);
  245.     END;
  246.  
  247.   IF NOT ErrorFlag THEN
  248.     BEGIN
  249.     tempSize := SIZEOF(brd);
  250.     io := FSRead (refNo, tempSize, POINTER(@brd));
  251.     IF io <> 0 THEN DiskRErr (io);
  252.     END;
  253.  }
  254.   io := FSClose (refNo);
  255.   IF NOT ErrorFlag THEN
  256.     IF io <> 0 THEN DiskRErr (io);
  257.  
  258.   IF NOT ErrorFlag THEN
  259.     ExpandRD;
  260.  
  261.   IF NOT ErrorFlag THEN
  262.     changed := FALSE;
  263.  
  264.   SetCursor (Arrow);
  265. END;
  266.  
  267.  
  268. {------------------------------------------------------------------------------------}
  269. PROCEDURE WriteFile (fName : str255; vRefNum: INTEGER);
  270. VAR refNo, io : INTEGER;
  271.     fileLength: LongInt;
  272.     tempSize: LongInt;
  273.  
  274. BEGIN
  275.   io := FSOpen(fName, VRefNum, refNo);            {Try to open file}
  276.  
  277.   IF io = {file not found Err} -43 THEN {create new fule}
  278.     BEGIN
  279.     io := Create (FName,VRefNum,myAppType,myFType);
  280.     IF io <> 0 THEN
  281.       DiskWErr (io);
  282.  
  283.     IF NOT ErrorFlag THEN
  284.       BEGIN
  285.       io := FSOpen(fName, VRefNum, refNo);
  286.       IF io <> 0 THEN DiskWErr (io)
  287.       END;
  288.  
  289.     END; {Create}
  290.  
  291.  {
  292.   fileLength := SizeOf(brd);
  293.  
  294.   IF NOT ErrorFlag THEN
  295.     BEGIN
  296.     io := SetEOF (refNo, 0);
  297.     IF io <> 0 THEN DiskWErr (io);
  298.     END;
  299.  
  300.   IF NOT ErrorFlag THEN
  301.     BEGIN
  302.     tempSize := SIZEOF(mz);
  303.     io := FSWrite (refNo, tempSize, POINTER(@mz));
  304.     IF io <> 0 THEN DiskWErr (io);
  305.     END;
  306.  
  307.   IF NOT ErrorFlag THEN
  308.     BEGIN
  309.     tempSize := SIZEOF(nz);
  310.     io := FSWrite (refNo, tempSize, POINTER(@nz));
  311.     IF io <> 0 THEN DiskWErr (io);
  312.     END;
  313.  
  314.   IF NOT ErrorFlag THEN
  315.     BEGIN
  316.     tempSize := SIZEOF(brd);
  317.     io := FSWrite (refNo, tempSize, POINTER(@brd));
  318.     IF io <> 0 THEN DiskWErr (io);
  319.     END;
  320.  }
  321.   io := FSClose (refNo);
  322.   If NOT ErrorFlag THEN
  323.     IF io <> 0 THEN DiskWErr (io);
  324.  
  325.   io := FlushVol (NIL, VrefNum);
  326.   IF NOT ErrorFlag THEN
  327.     IF io <> 0 THEN DiskWErr (io);
  328.  
  329.   IF NOT ErrorFlag THEN
  330.     changed := FALSE;
  331.  
  332.   SetCursor (Arrow);
  333. END;
  334.  
  335.  
  336. {----------------------------------------------------------------------------------}
  337. PROCEDURE CloseSysWindow;
  338.  
  339. VAR
  340.   WhichWindow: WindowPeek;
  341.   accNumber: INTEGER;
  342.  
  343. BEGIN
  344.   whichWindow := WindowPeek(FrontWindow);
  345.   accNumber := whichWindow^.windowKind;
  346.   CloseDeskAcc(accNumber);
  347. END;
  348.  
  349.  
  350. {----------------------------------------------------------------------------------}
  351. PROCEDURE OpenAFile(FileName: Str255; VolRefNum: INTEGER);
  352. VAR
  353.   i: INTEGER;
  354.  
  355. BEGIN
  356.   IF NOT FCancel THEN
  357.     BEGIN
  358.     ReadFile(FileName,VolRefNum);
  359.     IF NOT ErrorFlag THEN
  360.       BEGIN
  361.       titled := TRUE;
  362.       changed := FALSE;
  363.       FileVolume := VolRefNum;
  364.       SetWTitle(RDWind,FileName);
  365.       END
  366.     ELSE
  367.       BEGIN
  368.       titled := FALSE;
  369.       changed := TRUE;
  370.       FCancel := TRUE;
  371.       END;
  372.     END; {not cancel}
  373. END;
  374.  
  375.  
  376.  
  377. {----------------------------------------------------------------------------------}
  378. PROCEDURE doSaveAs;
  379. VAR
  380.    tempPt: Point;      {origin for putfile dialog}
  381.    theReply: SFReply;  {answer from putfile}
  382.    NameStr: Str255;    {prompt for putfile}
  383.    OldName: Str255;    {the old name of the file}
  384.  
  385.  
  386. BEGIN
  387.   GetWTitle(RDWind,OldName);
  388.   GetIndString (NameStr,StringsID,2); {"save file as"}
  389.   SetPt(tempPt,100,100);
  390.   SFPutFile (tempPt, NameStr, OldName, NIL, theReply);
  391.  
  392.   WITH theReply DO
  393.     IF good THEN
  394.       BEGIN
  395.       titled := TRUE;
  396.       Changed := TRUE;
  397.       FileVolume := vRefNum;
  398.       SetWTitle(RDWind,fName);
  399.       doSave;
  400.       END
  401.     ELSE
  402.       BEGIN
  403.       FCancel := TRUE;
  404.       doneFlag := FALSE;
  405.       END;
  406. END;
  407.  
  408.  
  409.  
  410. {----------------------------------------------------------------------------------}
  411. PROCEDURE doSave;
  412. VAR
  413.   FileName: Str255;
  414.  
  415. BEGIN
  416.   IF titled THEN
  417.     BEGIN
  418.     GetWTitle(RDWind,FileName);
  419.     WriteFile(FileName,FileVolume);
  420.     END
  421.   ELSE
  422.     doSaveAs;
  423. END;
  424.  
  425.  
  426. {----------------------------------------------------------------------------------}
  427. PROCEDURE doRevert;
  428. VAR FileName: Str255;
  429.  
  430. BEGIN
  431.   IF titled THEN
  432.     BEGIN
  433.     GetWTitle(RDWind,FileName);
  434.     IF NOT changed THEN             {titled but not changed, just reread}
  435.       ReadFile(FileName,FileVolume)
  436.     ELSE
  437.       BEGIN
  438.       IF CautionAlert(RevCauID, NIL) = OK THEN {titled and changed, ask if forget changes}
  439.         ReadFile(FileName,FileVolume);
  440.       END;
  441.     RedrawWindow;
  442.     Changed := TRUE;
  443.     END;
  444. END;
  445.  
  446.  
  447. {----------------------------------------------------------------------------------}
  448. PROCEDURE doClose;
  449. CONST
  450.   NoSave = 3;
  451. VAR
  452.   FileName,qStr: Str255;
  453.  
  454. BEGIN
  455.   IF changed THEN
  456.     BEGIN
  457.     GetWTitle(RDWind,FileName);
  458.     IF doneFlag THEN
  459.       GetIndString (qStr,StringsID,8)
  460.     ELSE
  461.       qStr := '';
  462.     ParamText (FileName,qStr,'','');
  463.     CASE CautionAlert(SaveCauID, NIL) OF
  464.       OK:
  465.         BEGIN
  466.         doSave;
  467.         IF NOT FCancel THEN
  468.           CloseAWindow;
  469.         END;
  470.  
  471.       Cancel:
  472.         BEGIN
  473.         FCancel := TRUE;
  474.         doneFlag := FALSE;
  475.         END;
  476.  
  477.       NoSave:
  478.         CloseAWindow;
  479.       END; {CASE}
  480.     END
  481.   ELSE
  482.     CloseAWindow;
  483. END;
  484.  
  485.  
  486. {----------------------------------------------------------------------------------}
  487. PROCEDURE doNew;
  488. VAR nameStr: Str255;
  489.  
  490. BEGIN
  491.   titled := FALSE;
  492.   changed := FALSE;
  493.   GetIndString (NameStr,StringsID,1); {"Untitled"}
  494.   SetWTitle(RDWind,NameStr);
  495.  
  496.   UpdateFlag := FALSE;
  497.   UpdateFlag := TRUE;
  498. END;
  499.  
  500.  
  501. {----------------------------------------------------------------------------------}
  502. PROCEDURE doOpen;
  503. {opens file from disk}
  504.  
  505. VAR
  506.    tempPt: Point;
  507.    theReply: SFReply;
  508.  
  509. BEGIN
  510.   IF changed THEN
  511.     doClose;
  512.   
  513.   IF NOT FCancel THEN
  514.     BEGIN
  515.     SetPt(tempPt,90,100);
  516.     SFGetFile(tempPt,'',NIL,1,MyFileTypes,NIL,theReply);
  517.     WITH theReply DO
  518.       IF good THEN
  519.         OpenAFile(fName,vRefNum);
  520.     END;
  521. END;
  522.  
  523. {----------------------------------------------------------------------------------}
  524. PROCEDURE doQuit;
  525. BEGIN
  526.   doneFlag := TRUE;
  527.   doClose
  528. END;
  529.  
  530.  
  531. {----------------------------------------------------------------------------------}
  532. PROCEDURE OpenFiles;
  533. {Open files initially selected from Finder, or a blank one if none are selected}
  534. VAR
  535.    numFiles: INTEGER;
  536.    message: INTEGER;
  537.    document : appFile;
  538.    counter: INTEGER;
  539.  
  540. BEGIN
  541.   CountAppFiles(message, numfiles);     {get number of files to be opened}
  542.  
  543.   FCancel := FALSE;
  544.   IF numFiles = 0 THEN
  545.     doNew
  546.   ELSE
  547.     BEGIN
  548.     GetAppFiles (1, document);
  549.     WITH document DO
  550.       IF ftype = myFileTypes[0] THEN
  551.         OpenAFile(fName,vRefNum);
  552.     END;
  553. END;
  554.  
  555.  
  556.  
  557. {real program follows}
  558.  
  559. PROCEDURE CirClick(cPoint: Point);
  560. VAR 
  561.   il,jl,endR: LongInt;
  562.   rPoint,ePoint: Point;
  563.   spacing: INTEGER;
  564.   lwidth: INTEGER;
  565.   lPos,rPos,uPos,dPos: INTEGER;
  566. BEGIN
  567.   REPEAT UNTIL NOT Button;
  568.   GetMouse(rPoint);
  569.   il := rPoint.h-cPoint.h;
  570.   jl := rPoint.v-cPoint.v;
  571.   spacing := Trunc(0.5+Sqrt(il*il +jl*jl));
  572.   lwidth := spacing DIV 2;
  573.   IF lwidth <= 0 THEN
  574.     lwidth := 1;
  575.   IF spacing <= 0 THEN
  576.     spacing := 1;
  577.   Pensize(lwidth,lwidth);
  578.   Penmode(patXOr);
  579.   PenPat(black);
  580.   lPos := cPoint.h - spacing;
  581.   rPos := cPoint.h + spacing;
  582.   uPos := cPoint.v - spacing;
  583.   dPos := cPoint.v + spacing;
  584.   SetRect(tempRect,lPos,uPos,rPos,dPos);
  585.   FrameOval(tempRect);
  586.   REPEAT UNTIL GetNextEvent(mDownMask,myEvent);
  587.   ePoint := myEvent.where;
  588.   GlobaltoLocal(ePoint);
  589.   il := ePoint.h-cPoint.h;
  590.   jl := ePoint.v-cPoint.v;
  591.   endR := Trunc(0.5+Sqrt(il*il +jl*jl));
  592.   REPEAT
  593.     lPos := lPos - spacing;
  594.     rPos := rPos + spacing;
  595.     uPos := uPos - spacing;
  596.     dPos := dPos + spacing;
  597.     SetRect(tempRect,lPos,uPos,rPos,dPos);
  598.     FrameOval(tempRect);
  599.   UNTIL (dPos-rPoint.v+lwidth) >= endR;
  600. END;
  601.  
  602.  
  603.  
  604. PROCEDURE InitProgram;
  605. VAR iz, jz: INTEGER;
  606.  
  607. BEGIN
  608.  SetRect(TempRect,0,0,511,342);
  609.  EraseRect(TempRect);                  {clear screan}
  610. END; {InitProgram}
  611.  
  612.  
  613. PROCEDURE FinishOff;
  614. BEGIN
  615. END; {FinishOff Procedure}
  616.  
  617.  
  618.  
  619. PROCEDURE ReplotStructure(OffSet: INTEGER);
  620. BEGIN
  621. END;
  622.  
  623. PROCEDURE RedrawWindow;
  624. BEGIN
  625.   EraseRect(RDWind^.PortRect);
  626.   ReplotStructure(0);
  627. END;
  628.  
  629. {----------------------------------------------------------------------------------}
  630. PROCEDURE DoCommand (mResult: LONGINT);
  631. { Execute command specified by mResult, the result of MenuSelect }
  632.  
  633.   VAR theItem: INTEGER;  {menu item number from mResult low-order word}
  634.       theMenu: INTEGER;  {menu number from mResult high-order word}
  635.       name: Str255;      {desk accessory name}
  636.       temp: INTEGER;
  637.       savePort: GrafPtr;      {temporary save of grafport}
  638.  
  639.  
  640.   BEGIN {PROCEDURE DoCommand}
  641.   theItem := LoWord(mResult);
  642.   theMenu := HiWord(mResult);             {set menu item number and menu number}
  643.  
  644.   CASE theMenu OF                         {case on menu ID}
  645.  
  646.   appleID:
  647.     BEGIN
  648.     GetItem(myMenus[appleM],theItem,name);  {get name of desk accesory}
  649.     GetPort(SavePort);
  650.     temp := OpenDeskAcc(name);              {open desk accesory}
  651.     SetPort(SavePort);
  652.     END;    {of appleID}
  653.  
  654.   fileID:
  655.     BEGIN
  656.     FCancel := FALSE;
  657.  
  658.     CASE theItem OF
  659.       NewCom: doNew;
  660.  
  661.       OpenCom: doOpen;
  662.  
  663.       CloseCom:
  664.         BEGIN
  665.         tempWPeek := WindowPeek(FrontWindow);
  666.         IF tempWPeek^.WindowKind = RDdoc THEN
  667.           doClose
  668.         ELSE
  669.           CloseSysWindow;
  670.         END;
  671.  
  672.       SaveCom:
  673.         BEGIN
  674.         tempWPeek := WindowPeek(FrontWindow);
  675.         IF tempWPeek^.WindowKind = RDdoc THEN
  676.           doSave;
  677.         END;
  678.  
  679.       SaveAsCom:
  680.         BEGIN
  681.         tempWPeek := WindowPeek(FrontWindow);
  682.         IF tempWPeek^.WindowKind = RDdoc THEN
  683.           doSaveAs;
  684.         END;
  685.  
  686.       RevertCom:
  687.         BEGIN
  688.         tempWPeek := WindowPeek(FrontWindow);
  689.         IF tempWPeek^.WindowKind = RDdoc THEN
  690.           doRevert;
  691.         END;
  692.  
  693.       QuitCom: doQuit;
  694.  
  695.       END; {case on theItem}
  696.  
  697.     END; {case of FileID}
  698.  
  699.   editID:
  700.     BEGIN                         {call Desk Manager to handle editing command if }
  701.     IF NOT SystemEdit(theItem-1) THEN  {desk accessory window is the active window}
  702.                                        {application window is the active window}
  703.       BEGIN
  704.  
  705.       IF theItem = CdiagCommand THEN
  706.         BEGIN
  707.  
  708.         myPict := OpenPicture(RDWind^.PortRect);
  709.         ReplotStructure(1);
  710.         ClosePicture;
  711.  
  712.         linteger := ZeroScrap;
  713.         linteger := PutScrap(myPict^^.picSize,'PICT',POINTER(myPict^));
  714.         END
  715.  
  716.       END
  717.     END;
  718.  
  719.   controlID:
  720.     CASE theItem OF
  721.     NCom:
  722.          BEGIN
  723.      EraseRect(RDWind^.PortRect);
  724.          END;
  725.     END;
  726.  
  727.   END;    {of menu case}          {to indicate completion of command, call }
  728.   HiliteMenu(0);                  {Menu Manager to unhighlight menu title  }
  729.                                   {(highlighted by MenuSelect)             }
  730.   END;  {of DoCommand}
  731.  
  732.  
  733.  
  734. {----------------------------------------------------------------------------------}
  735. PROCEDURE MainLoop;
  736.  
  737.   BEGIN
  738.  
  739.   SystemTask;                             {do desk accessories}
  740.  
  741.   IF GetNextEvent(everyEvent,myEvent) {call Toolbox Event Manager to get the next }
  742.     THEN                              { event that the application should handle}
  743.       CASE myEvent.what OF            {case on event type}
  744.  
  745.       mouseDown:            {mouse button down:  call Window Manager to learn where}
  746.         CASE FindWindow(myEvent.where,whichWindow) OF
  747.  
  748.         inSysWindow:        {desk accessory window: call Desk Manager to handle it}
  749.           SystemClick(myEvent,whichWindow);
  750.  
  751.         inMenuBar:          {menu bar:  call Menu Manager to learn which command; }
  752.           DoCommand(MenuSelect(myEvent.where)); { then execute it}
  753.  
  754.         inContent:
  755.           BEGIN
  756.           IF whichWindow <> FrontWindow THEN
  757.             SelectWindow(whichWindow)
  758.           ELSE
  759.             BEGIN
  760.             GlobalToLocal(myEvent.where);
  761.             CirClick(myEvent.where)
  762.             END;
  763.           END     {of inContent}
  764.  
  765.         END;    {of mouseDown}
  766.  
  767.      keyDown, autoKey:              {key pressed once or held down to repeat}
  768.         BEGIN
  769.         theChar := CHR(BitAnd(myEvent.message,charCodeMask));  {get the character}
  770.         IF BitAnd(myEvent.modifiers,cmdKey) <> 0  THEN { if Command key down,    }
  771.           DoCommand(MenuKey(theChar))                  { execute it              }
  772.         ELSE
  773.           BEGIN
  774.           END;
  775.         END;
  776.  
  777.       activateEvt:
  778.       BEGIN
  779.       IF BitAnd(myEvent.modifiers,activeFlag) <> 0 THEN   {window becoming active}
  780.         IF myEvent.message = Ord4(RDWind) THEN
  781.           BEGIN
  782.           SelectWindow(RDWind);
  783.           SetPort(RDWind);
  784.           END
  785.         ELSE
  786.           BEGIN                  {application window is becoming inactive: }
  787.           END;
  788.       END;   {of activateEvt}
  789.  
  790.       updateEvt:
  791.         BEGIN
  792.         GetPort(savePort);
  793.         SetPort(RDWind);
  794.         BeginUpdate(RDWind);
  795.         IF UpdateFlag Then
  796.           ReplotStructure(0);
  797.         EndUpdate(RDWind);
  798.         SetPort(savePort);
  799.         END
  800.  
  801.      END;    {of event case}
  802.  
  803. END; {main loop}
  804.  
  805.  
  806.  
  807. BEGIN  {C_S_Cover}
  808. { Initialization }
  809. InitGraf(@thePort);           {initialize QuickDraw}
  810. InitFonts;                    {initialize Font Manager}
  811. FlushEvents(everyEvent,0);    {call OS Event Manager to discard any previous events}
  812. InitWindows;                  {initialize Window Manager}
  813. InitMenus;                    {initialize Menu Manager}
  814. TEInit;                       {initialize TextEdit}
  815. InitDialogs(NIL);             {initialize Dialog Manager}
  816. InitCursor;                   {call QuickDraw to make cursor (pointer) an arrow}
  817.  
  818. SetUpMenus;                   {set up menus and menu bar}
  819.  
  820. WITH screenBits.bounds DO     {call QuickDraw to set dragging boundaries; ensure at }
  821.   SetRect(dragRect,4,24,right-4,bottom-4); { least 4 by 4 pixels will remain visible}
  822. doneFlag := FALSE;            {flag to detect when Quit command is chosen}
  823.  
  824. RDWind := GetNewWindow(windowID,@RDWRecord,POINTER(-1)); {put up RD window}
  825.  
  826. hCurs := GetCursor (iBeamCursor);
  827. iBeam := hCurs^^;                              {get I-beam cursor}
  828.  
  829. SelectWindow(RDWind);
  830. SetPort(RDWind);
  831. tempWPeek := WindowPeek(RDWind);
  832. tempWPeek^.windowkind := RDdoc;
  833. myFileTypes[0] := myFType;
  834.  
  835. UpDateFlag := FALSE;
  836.  
  837.  REPEAT
  838.    MainLoop;
  839.  UNTIL doneFlag;
  840. END.
  841.